Visualization (3D)
Importing packages
using BoundaryIntegralEquations
using Meshes
import WGLMakie as wgl # WGLMakie integrates into VSCode. Other backends can also be used.
wgl.set_theme!(resolution=(800, 800))
Visualizing full mesh
First we start with a triangular Mesh
tri_mesh_file = joinpath(dirname(pathof(BoundaryIntegralEquations)),
"..","examples","meshes","cylinder");
tri_mesh = load3dTriangularComsolMesh(tri_mesh_file;geometry_order=:linear)
simple_tri_mesh = create_simple_mesh(tri_mesh)
viz(simple_tri_mesh;showfacets=true)